home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / v cisle / httrack / httrack-3.41-2.exe / {app} / src / htsname.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-15  |  3.3 KB  |  104 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: httrack.c subroutines:                                 */
  34. /*       savename routine (compute output filename)             */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38.  
  39.  
  40. #ifndef HTSNAME_DEFH
  41. #define HTSNAME_DEFH 
  42.  
  43. #include "htsglobal.h"
  44.  
  45. #define DELAYED_EXT "delayed"
  46. #define IS_DELAYED_EXT(a) ( ((a) != NULL) && ((a)[0] != 0) && strendwith_(a, "." DELAYED_EXT) )
  47. HTS_STATIC int strendwith_(const char* a, const char* b)  {
  48.   int i, j;
  49.   for(i = 0 ; a[i] != 0 ; i++);
  50.   for(j = 0 ; b[j] != 0 ; j++);
  51.   while(i >= 0 && j >= 0 && a[i] == b[j]) {
  52.     i--;
  53.     j--;
  54.   }
  55.   return (j == -1);
  56. }
  57.  
  58. /* Library internal definictions */
  59. #ifdef HTS_INTERNAL_BYTECODE
  60.  
  61. /* Forward definitions */
  62. #ifndef HTS_DEF_FWSTRUCT_httrackp
  63. #define HTS_DEF_FWSTRUCT_httrackp
  64. typedef struct httrackp httrackp;
  65. #endif
  66. #ifndef HTS_DEF_FWSTRUCT_lien_url
  67. #define HTS_DEF_FWSTRUCT_lien_url
  68. typedef struct lien_url lien_url;
  69. #endif
  70. #ifndef HTS_DEF_FWSTRUCT_struct_back
  71. #define HTS_DEF_FWSTRUCT_struct_back
  72. typedef struct struct_back struct_back;
  73. #endif
  74. #ifndef HTS_DEF_FWSTRUCT_cache_back
  75. #define HTS_DEF_FWSTRUCT_cache_back
  76. typedef struct cache_back cache_back;
  77. #endif
  78. #ifndef HTS_DEF_FWSTRUCT_hash_struct
  79. #define HTS_DEF_FWSTRUCT_hash_struct
  80. typedef struct hash_struct hash_struct;
  81. #endif
  82. #ifndef HTS_DEF_FWSTRUCT_lien_back
  83. #define HTS_DEF_FWSTRUCT_lien_back
  84. typedef struct lien_back lien_back;
  85. #endif
  86.  
  87. // note: 'headers' can either be null, or incomplete (only r member filled)
  88. int url_savename(char* adr_complete, char* fil_complete, char* save,
  89.                                  char* former_adr, char* former_fil, 
  90.                                  char* referer_adr, char* referer_fil, 
  91.                                  httrackp* opt, 
  92.                                  lien_url** liens, int lien_tot, 
  93.                                  struct_back* sback, 
  94.                                  cache_back* cache, 
  95.                                  hash_struct* hash, 
  96.                                  int ptr, int numero_passe, 
  97.                                  const lien_back* headers);
  98. void standard_name(char* b,char* dot_pos,char* nom_pos,char* fil_complete,int short_ver);
  99. void url_savename_addstr(char* d,char* s);
  100. char* url_md5(char* digest_buffer, char* fil_complete);
  101. #endif
  102.  
  103. #endif
  104.